.contact-info-form{
    background-color: #222;
    padding: 25px;
}
.contact-form-list{
    margin: 20px 0;
}
.contact-form-list-title{
    font-size: 15px;
    margin-bottom:5px;
}
.contact-form-text{
    padding: 20px;
    width: 100%;
    background-color: #4a4a4a;
    border: solid 1px #808080;
    opacity: 0.8;
    color: #fff;
    font-size: 18px;
    box-sizing: border-box;
    margin: 10px 0;
    position: relative;
    transition: all .3s linear;
}
.contact-form-text:focus{
    border: solid 1px #ffd200;
}
.contact-form-list-textarea{
    padding: 20px;
    width: 100%;
    background-color: #4a4a4a;
    border: solid 1px #808080;
    opacity: 0.8;
    color: #fff;
    font-size: 18px;
    box-sizing: border-box;
    margin: 10px 0;
    position: relative;
    height: 250px;
    resize: none;
    transition: all .3s linear;
}
.contact-form-list-textarea:focus{
    border: solid 1px #ffd200;
}
.contact-form-button{
    text-align: right;
}
.contact-form-button button{
    /* border:1px solid #ffd200; */
    background-color: transparent;
    color: #fff;
    padding: 15px 35px;
    border: solid 1px #2f3034;
    transition: all .3s linear;
    cursor: pointer;
}
.contact-form-button button:hover{
    border: solid 1px #ffd200;
    color: #ffd200;
}
.contact-map-box{
    margin-bottom:20px;
    width: 100%;
    height: 500px;
    max-height: 100%;
}